home *** CD-ROM | disk | FTP | other *** search
-
- /*
- (C) 1999 AROS - The Amiga Research OS
- $Id: rtfreefilelist.c,v 1.5 2000/12/15 20:43:35 stegerg Exp $
-
- Desc:
- Lang: English
- */
-
- #include <exec/types.h>
- #include <proto/exec.h>
- #include <proto/reqtools.h>
- #include <proto/intuition.h>
- #include <exec/libraries.h>
- #include <exec/memory.h>
- #include <aros/libcall.h>
- #include "reqtools_intern.h"
-
- /*****************************************************************************
-
- NAME */
-
- AROS_LH1(VOID, rtFreeFileList,
-
- /* SYNOPSIS */
-
- AROS_LHA(struct rtFileList *, selfile, A0),
-
- /* LOCATION */
-
- struct ReqToolsBase *, ReqToolsBase, 10, ReqTools)
-
- /* FUNCTION
-
- Frees a filelist returned by rtFileRequest() when the FREQF_MULTISELECT
- flag was set. Call this after you have scanned the filelist and you no
- longer need it.
-
- INPUTS
-
- filelist -- pointer to rtFileList structure, returned by rtFileRequest();
- may be NULL.
-
- RESULT
- none
-
- NOTES
-
- EXAMPLE
-
- BUGS
- none known
-
- SEE ALSO
-
- rtFileRequest()
-
- INTERNALS
-
- HISTORY
-
- ******************************************************************************/
- {
- AROS_LIBFUNC_INIT
-
- FreeFileList(selfile);
-
- AROS_LIBFUNC_EXIT
-
- } /* rtFreeFileList */
-